2020 Method
Changes 0
M

NurbSpline.CreateCurve

Description:
Creates a new geometric Curve object from NURBS curve data containing just control points and weights. The created curve may be a NURBSpline or a simpler curve such as line or arc.
Remarks:
There must be at least 2 control points. The number of weights must be equal to the the number of control points. The values of all weights must be positive.
public static Curve CreateCurve(
	IList<XYZ> controlPoints,
	IList<double> weights
)
Return Value Curve The new Curve object.